home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Screen Effects
/
Screen Effects.iso
/
programs
/
worm
/
about.c
next >
Wrap
C/C++ Source or Header
|
1994-04-27
|
396b
|
21 lines
#include "worm.h"
BOOL FAR PASCAL AboutDlgProc(HWND hDlg, unsigned message, WORD wParam,
LONG lParam)
{
switch(message)
{
case WM_INITDIALOG:
return (TRUE);
case WM_COMMAND:
if (wParam == IDOK)
{
EndDialog(hDlg, NULL);
return (TRUE);
}
break;
}
return(FALSE);
}